local player = owner.Character local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(1,100,1,50) billboard.StudsOffsetWorldSpace = Vector3.new(0,5,0) billboard.Adornee = player.Torso billboard.MaxDistance = 40 billboard.Parent = player.Torso local textlabel = Instance.new("TextLabel") textlabel.Size = UDim2.new(1,0,1,0) textlabel.BackgroundTransparency = 1 textlabel.Text = "test" textlabel.TextSize = 30 textlabel.TextColor3 = Color3.fromRGB(181, 181, 181) textlabel.TextStrokeTransparency = 0.8 textlabel.Parent = billboard